home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / gdm-restart < prev    next >
Text File  |  2009-10-20  |  205b  |  11 lines

  1. #!/bin/sh
  2.  
  3. PIDFILE=/var/run/gdm.pid
  4. if test '!' -f $PIDFILE ; then
  5.     echo "$PIDFILE doesn't exist, perhaps GDM isn't running"
  6.     exit 1
  7. fi
  8. # exec the kill to get the correct return code
  9. echo "Not supported"
  10.  
  11.